home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ole2book.zip / CHAP07.ZIP / CHAP07 / DATATRAN / DATATRAN.RC < prev    next >
Text File  |  1993-04-23  |  2KB  |  59 lines

  1. /*
  2.  * DATATRAN.RC
  3.  * Data Transfer Object version 1.00 Chapter 7
  4.  *
  5.  * Resource definitions for Data Object DLL.
  6.  *
  7.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Software Design Engineer
  10.  * Microsoft Systems Developer Relations
  11.  *
  12.  * Internet  :  kraigb@microsoft.com
  13.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  14.  */
  15.  
  16.  
  17. #include <windows.h>
  18. #include <ver.h>
  19. #include "datatran.h"
  20.  
  21.  
  22. //Default is nodebug
  23. #ifndef DEBUG
  24. #define VER_DEBUG                   0
  25. #else
  26. #define VER_DEBUG                   VS_FF_DEBUG
  27. #endif
  28.  
  29. VS_VERSION_INFO VERSIONINFO 
  30.  FILEVERSION        1,0,0,0
  31.  PRODUCTVERSION     1,0,0,0
  32.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  33.  FILEFLAGS          VER_DEBUG
  34.  FILEOS             VOS_DOS_WINDOWS16
  35.  FILETYPE           VFT_DLL
  36.  FILESUBTYPE        VFT_UNKNOWN
  37.  
  38.  BEGIN
  39.    BLOCK "StringFileInfo"
  40.     BEGIN
  41.      BLOCK "040904E4"
  42.       BEGIN
  43.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  44.        VALUE "FileDescription", "Data Transfer Object 1.0", "\0"
  45.        VALUE "FileVersion",     "1.00\0", "\0"
  46.        VALUE "InternalName",    "DATATRAN.DLL", "\0"
  47.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  48.        VALUE "OriginalFilename","DATATRAN.DLL", "\0"
  49.        VALUE "ProductName",     "Data Transfer Object 1.0", "\0"
  50.        VALUE "ProductVersion",  "1.00\0"
  51.       END
  52.    END
  53.  
  54.    BLOCK "VarFileInfo"
  55.     BEGIN 
  56.      VALUE "Translation", 0x0409, 0x04E4
  57.     END 
  58.  END
  59.